Rectangle Class

Draws a rectangle.

Events

MouseDown

MouseDrag

MouseUp


Properties

BorderWidth

BottomRightColor

FillColor

LeftTopColor


Methods

None

More information available in parent classes: RectControl:Control:Object

Because this is a RectControl, see the RectControl for other properties and events that are common to all RectControl objects.


Example

You can give a rectangle a sunken or raised appearance using the global functions LightBevelColor, DarkBevelColor, and FillColor.

//Sunken Appearance
Me.BorderWidth=2
Me.TopLeftColor= DarkBevelColor
Me.BottomRightColor= LightBevelColor
Me.FillColor= FillColor

//Raised Appearance
Me.BorderWidth=2
Me.TopLeftColor= LightBevelColor
Me.BottomRightColor= DarkBevelColor
Me.FillColor= FillColor

See Also

RoundRectangle control; RectControl class.